Welcome![Sign In][Sign Up]
Location:
Search - static code

Search list

[Other resourcesoftware_testing_tech

Description: 讲述了软件测试度量技术与代码静态检测技术,讲授了当前条件下可以利用的工具(logiscope与pc-lint)来帮助完成一系列的测试工作的原理,并带有应用实例.-on the software testing measurement and static code detection technology, taught under the current conditions can be used as a tool (logiscope with pc - lint) to help complete a series of tests of principle, and with application examples.
Platform: | Size: 2123417 | Author: 张子祥 | Hits:

[Windows DevelopCode

Description: 动态链接库程序的编写。静态库与动态库的区别,以及调用程序在链接静态库和动态库时的区别。如何利用工具查看动态链接库输出的函数,Depends工具的使用,C++编译器名字改编技术对动态链接库输出函数的影响,extern \"C\"的用法,利用模块定义文件来解决C++名字改编的问题。用typedef定义指向函数的指针类型,如何获得动态连接库里的函数的指针。-DLL in the preparation process. Static and dynamic library of distinction, and the procedure call link static and dynamic library distinction. How to use the tool View DLL exporting the function Depends the use of tools C compiler technology adapted to name DLL function of the output, extern "C" for the usage, use module definition files to resolve the C adaptation of the name. Typedef definitions used at the function pointer type, how to obtain 13-17 Dynamic Link function of the target.
Platform: | Size: 77111 | Author: 中国 | Hits:

[JSP/Javajava--

Description: JAVAJTest只是做出了一个测试代码框架而已,正真的测试代码,最终还是要用户自己来实现。 因此,我认为,JTest最大的优势在于静态代码分析,至于自动生成测试代码,只是商业上的一个嘑头而已,当然生成测试代码框架也是不错的,但是千万不要以为什么事情都不用自己做了!-JAVAJTest just made a test code framework it is really testing the code, and ultimately to the user is to be achieved. Therefore, I think the fallout is the biggest advantage of the static code analysis, automatic generation As for the test code, only commercial Hu on the first one in there, test code generation framework is not a bad thing, but never to why things are not done!
Platform: | Size: 199157 | Author: 刘佳 | Hits:

[Embeded-SCM DevelopPC-Lint选项详解

Description: PC-Lint是一个历史悠久,功能异常强劲的静态代码检测工具。它的使用历史可以追溯到计算机编程的远古时代(30多年以前)。经过这么多年的发展,它不但能够监测出许多语法逻辑上的隐患,而且也能够有效地帮你提出许多程序在空间利用、运行效率上的改进点,在很多专业级的软件公司,比如Microsoft, PC-Lint检查无错误无警告是代码首先要过的第一关,我个人觉得,对于小公司和个人开发而言,PC-Lint也非常重要,因为基于开发成本考虑,小公司和个人往往不能拿出很多很全面的测试,这时候,PC-Lint的强劲功能可以很好地提高软件的质量。--PC-Lint is an old and very powerful static code checking tool. After more than 30 years development, it could not only detect potential bugs in the codes, but also help improving the space usage of your programs. In some big software companies, like Microsoft, the first requirement of the code is to pass PC-Lint. For small companies or personal developers, PC-Lint could also be very helpful.
Platform: | Size: 45519 | Author: 林金明 | Hits:

[Embeded-SCM DevelopPC-Lint.v8.0

Description: PC-Lint是一种静态代码检测工具,可以说,PC-LINT是一种更加严格的编译器,不仅可以象普通编译器那样检查出一般的语法错误,还可以检查出那些虽然完全合乎语法要求,但很可能是潜在的、不易发现的错误。--PC-Lint is a static code checking tool. In other words, PC-Lint is a more powerful compiler. It could detect normal syntax errors like normal compilers, and it also could find some potential and difficult to find errors, though they are correct in syntax.
Platform: | Size: 9245433 | Author: 林金明 | Hits:

[ELanguagehc_compiler

Description: 由于时间紧迫及事先准备不足,编译器最后定型时暴露出不少问题及不足之处,主要有以下一些方面:   不支持数组数据类型,这是文法分析器设计时的一个疏漏,由于时间关系,最后只得把扫描器中已做好的相关的数组部分删去。   对于float数据类型的支持,直到语义分析都是正常的,也能生成相应的汇编代码,但由于我们对8086/8088指令系统本身了解不足,这样的汇编代码将只能做到含义上完全忠实于源程序,但不能运行。   对于局部变量的支持,则于时间紧迫,所有的局部变量全被处理成静态变量。使递归函数不能得到正确的结果。    对于函数调用语句,不进行参数匹配检查,如果参数数量不对,也将能通过编译,但运行时将产生非法操作。   对&& !等逻辑操作在最后生成代码时处理比较粗燥,生成的代码在逻辑复杂时将不能保证运行正常。   接下来有一些,不能说是缺陷,但必须说明的问题:   对于main函数,没有参数表,通回类型也必须为void,但如果写上参数表及其他返回类型也能编译通过,生成代码时将简单地忽略,不影响最后的代码的运行。   对于while,for,if语句,其语句体不管是一句还是多句,必须都有{}围起来。这跟C语言中若是一句则可省略{}不同。-Due to the time constraints and lack of preparation in advance, the compiler finalized when exposed numerous problems and shortcomings, mainly in the following aspects : no support for array data type, which is grammar analyzer design of an omission, because of the time, the final could only have scanners do phase customs array deleted. For float data types of support until semantic analysis is normal, and can generate the corresponding assembly code, but because of our 8086/8088 directive to the knowledge of the system itself, this compilation can do to code meaning entirely faithful to the source, but not running. For the support of local variables, in the time constraints, all local variables were all handled in the static variable. So recursive function will not get the right results.
Platform: | Size: 260096 | Author: 周杰 | Hits:

[JSP/Javajava--

Description: JAVAJTest只是做出了一个测试代码框架而已,正真的测试代码,最终还是要用户自己来实现。 因此,我认为,JTest最大的优势在于静态代码分析,至于自动生成测试代码,只是商业上的一个嘑头而已,当然生成测试代码框架也是不错的,但是千万不要以为什么事情都不用自己做了!-JAVAJTest just made a test code framework it is really testing the code, and ultimately to the user is to be achieved. Therefore, I think the fallout is the biggest advantage of the static code analysis, automatic generation As for the test code, only commercial Hu on the first one in there, test code generation framework is not a bad thing, but never to why things are not done!
Platform: | Size: 198656 | Author: 刘佳 | Hits:

[Multimedia DevelopLZW_CODE

Description: 高效的图片压缩程序代码,可以用于静态图片压缩-efficient image compression code that can be used in static image compression
Platform: | Size: 1189888 | Author: afax | Hits:

[Static control由CStatic派生的柱状图控制演示程序

Description: 由CStatic派生的柱状图控制演示程序源码,单击添加按钮,便会看到效果,还可以设置显示方式!-CStatic derived from the control column demo program source code, click the Add button, they will see results, but also can set display mode!
Platform: | Size: 20480 | Author: gwj | Hits:

[Multimedia DevelopGsmLib

Description: GSM音频编解码器,我们已经用在了自己的产品上.这个源代码是经过整理后的代码.直接下载用VC编译则可.生成的是库(静态库),绝对值得大家参考.-GSM audio decoder, we have used in their products. The source code is collated code. Direct download can be compiled with VC. The library is generated (static library), and definitely worth your consideration.
Platform: | Size: 48128 | Author: 祥子 | Hits:

[Embeded-SCM DevelopPC-Lint选项详解

Description: PC-Lint是一个历史悠久,功能异常强劲的静态代码检测工具。它的使用历史可以追溯到计算机编程的远古时代(30多年以前)。经过这么多年的发展,它不但能够监测出许多语法逻辑上的隐患,而且也能够有效地帮你提出许多程序在空间利用、运行效率上的改进点,在很多专业级的软件公司,比如Microsoft, PC-Lint检查无错误无警告是代码首先要过的第一关,我个人觉得,对于小公司和个人开发而言,PC-Lint也非常重要,因为基于开发成本考虑,小公司和个人往往不能拿出很多很全面的测试,这时候,PC-Lint的强劲功能可以很好地提高软件的质量。--PC-Lint is an old and very powerful static code checking tool. After more than 30 years development, it could not only detect potential bugs in the codes, but also help improving the space usage of your programs. In some big software companies, like Microsoft, the first requirement of the code is to pass PC-Lint. For small companies or personal developers, PC-Lint could also be very helpful.
Platform: | Size: 45056 | Author: 林金明 | Hits:

[GIS programsoftware_testing_tech

Description: 讲述了软件测试度量技术与代码静态检测技术,讲授了当前条件下可以利用的工具(logiscope与pc-lint)来帮助完成一系列的测试工作的原理,并带有应用实例.-on the software testing measurement and static code detection technology, taught under the current conditions can be used as a tool (logiscope with pc- lint) to help complete a series of tests of principle, and with application examples.
Platform: | Size: 2122752 | Author: 张子祥 | Hits:

[matlabcode

Description: Matlab based Static Simulator, from Laiho s book for UMTS
Platform: | Size: 314368 | Author: Nicos Stelikos | Hits:

[GUI Develophandgesturerecogniton

Description: 本代码实现了对静态五种基本静态手势的识别,通过皮肤颜色模型分割人手,然后通过边界追踪得到手的轮廓,最后通过傅里叶系数识别手势-The static code of the five basic static gesture recognition, through the skin color model partition manually, and then get through the border to track the contours of the hands, and finally through the Fourier coefficient of gesture recognition
Platform: | Size: 4096 | Author: 魏志莲 | Hits:

[Windows DevelopStatic-disassembly-of-obfuscated-binaries

Description: 静态反汇编分析混淆后的二进制代码的方法,对反混淆研究很实用-The method of Static analysis disassemble the binary code after confusion and is very practical to the counter-confusion research
Platform: | Size: 299008 | Author: 麻子 | Hits:

[Software Engineeringstatic-code-list

Description: loadrunner的服务器端返回的代码列表-loadrunner' s returned by the server-side code list
Platform: | Size: 5120 | Author: 王力 | Hits:

[JSP/Javastatic-founction

Description: 静态变量:由static修饰,静态变量是所有对象共享,唯一。 可以直接使用 类名.变量名 调用。 静态方法:方法中不能使用非静态的变量或对象,除非该变量或对象是在该方法 中申明或定义的。 可以直接使用 类名.方法名() 调用该方法。 不能被子类重写(覆盖 )。 静态代码块: static{你的代码}代码块中不能使用非静态的变量或对象, 除非该变量或对象是在该方法中申明或定义的。 该代码块在类加载的执行一次,不会再执行第二次。-Static variables: static modification, static variables are shared by all objects only. Can directly use the class name and variable name call. Static methods: the method can not use a non-static variable or object, unless the variable or object is affirmed in the method or definition. Can directly use the name of the class method name () This method is called. Can not be overridden by subclasses (coverage). Static code block: static {your code} code block can not use non-static variable or object, unless the variable or object is in the method declaration or defined. The code block in the implementation of the class loading time, no longer perform a second.
Platform: | Size: 1024 | Author: 顾培 | Hits:

[Software EngineeringStatic-code-checking

Description: pclint的基本使用 包括用pclint检查代码 对两三个简单程序进行检查,并根据pclit检查的结果更正程序 比较简单,初学者使用-Basic use pclint include checking code with pclint two or three simple procedures for checking and correction based on the results pclit checking procedure is relatively simple, for beginners
Platform: | Size: 316416 | Author: DA | Hits:

[SCMStatic-digital-tube-display

Description: 单片机课程设计开发,数码管静态显示的实现代码,包含源代码-SCM curriculum design and development, digital display of the static code, including source code
Platform: | Size: 14336 | Author: LIU | Hits:

[OtherEditor_de idiomas v.10 code

Description: Editor of Languages for Virtual Martin Temporice v1.7 or for any software that uses plain text formatting always stores its files in the format of editable code, the program is enough of 3 spreadsheets called listbox the 3 his ID of tab where the variables are loaded of the plain text language, a static text form to visualize the data from said file and editing button where it is allowed to load information to the dynamic spreadsheet and in this way to be able to edit 1 / n languages in * .txt * format, being able to select 3 modes of loading the text mode plane, text in editable format and both cases is plain text and editable text.
Platform: | Size: 93184 | Author: fiirstgoto3 | Hits:
« 12 3 4 5 6 7 8 9 10 ... 50 »

CodeBus www.codebus.net